home *** CD-ROM | disk | FTP | other *** search
- on HandlePuppetSound stringParam
- stopSounds()
- puppetSound(string(stringParam))
- updateStage()
- repeat while soundBusy(1)
- if the mouseDown then
- puppetSound(0)
- end if
- updateStage()
- end repeat
- stopSounds()
- updateStage()
- end
-
- on HandlePuppetSoundNS stringParam
- stopSounds()
- puppetSound(string(stringParam))
- updateStage()
- DelaySome(15)
- repeat while soundBusy(1)
- updateStage()
- end repeat
- stopSounds()
- updateStage()
- end
-
- on soundClicker playsound
- global gClicked
- if soundBusy(1) then
- puppetSound(0)
- else
- puppetSound(playsound)
- set gClicked to the clickOn
- end if
- if the clickOn <> gClicked then
- puppetSound(playsound)
- set gClicked to the clickOn
- end if
- end
-
- on stopSounds
- sound stop 1
- sound stop 2
- puppetSound(0)
- updateStage()
- end
-
- on stopSound2
- if soundBusy(2) then
- sound stop 2
- end if
- end
-
- on DelaySome howLong
- startTimer()
- repeat while the timer < howLong
- nothing()
- end repeat
- end
-